home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / warpcom.zip / WARPCOMM.H < prev    next >
Text File  |  1991-01-20  |  676b  |  18 lines

  1. void set_baudrate(unsigned int baud_rate);
  2. int char_waiting(void);
  3. void send_modem_string(char *s);
  4. void set_rts(unsigned int i);
  5. void set_dtr(unsigned int i);
  6. void clear_receive_buffer(void);
  7. void clear_xmit_buffer(void);
  8. void com_open(unsigned int baud_rate, unsigned int irq, unsigned int base_address,
  9.     unsigned int r_size, unsigned int x_size);
  10. void com_close(void);
  11. void com_out_buf(unsigned char huge *s, unsigned int length);
  12. void com_get_buf(unsigned char huge *s, unsigned int length);
  13. void com_out_char(char ch1);
  14. void com_out_uchar(unsigned char ch1);
  15. void com_out_char_str(char *s);
  16. char com_get_char(void);
  17. unsigned char com_get_uchar(void);
  18.